home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_libgtop.idb / usr / freeware / include / glibtop / union.h.z / union.h
Encoding:
C/C++ Source or Header  |  1999-07-16  |  2.3 KB  |  86 lines

  1. /* $Id: union.h,v 1.10 1999/02/23 11:43:23 martin Exp $ */
  2.  
  3. /* Copyright (C) 1998-99 Martin Baulig
  4.    This file is part of LibGTop 1.0.
  5.  
  6.    Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
  7.  
  8.    LibGTop is free software; you can redistribute it and/or modify it
  9.    under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2 of the License,
  11.    or (at your option) any later version.
  12.  
  13.    LibGTop is distributed in the hope that it will be useful, but WITHOUT
  14.    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15.    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16.    for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with LibGTop; see the file COPYING. If not, write to the
  20.    Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  21.    Boston, MA 02111-1307, USA.
  22. */
  23.  
  24. #ifndef __GLIBTOP_UNION_H__
  25. #define __GLIBTOP_UNION_H__
  26.  
  27. #include <glibtop/cpu.h>
  28. #include <glibtop/mem.h>
  29. #include <glibtop/swap.h>
  30. #include <glibtop/uptime.h>
  31. #include <glibtop/loadavg.h>
  32. #include <glibtop/shm_limits.h>
  33. #include <glibtop/msg_limits.h>
  34. #include <glibtop/sem_limits.h>
  35. #include <glibtop/proclist.h>
  36.  
  37. #include <glibtop/procstate.h>
  38. #include <glibtop/procuid.h>
  39. #include <glibtop/procmem.h>
  40. #include <glibtop/proctime.h>
  41. #include <glibtop/procsignal.h>
  42. #include <glibtop/prockernel.h>
  43. #include <glibtop/procsegment.h>
  44. #include <glibtop/procargs.h>
  45. #include <glibtop/procmap.h>
  46.  
  47. #include <glibtop/mountlist.h>
  48. #include <glibtop/fsusage.h>
  49.  
  50. #include <glibtop/netload.h>
  51. #include <glibtop/ppp.h>
  52.  
  53. BEGIN_LIBGTOP_DECLS
  54.  
  55. typedef union _glibtop_union    glibtop_union;
  56.  
  57. union _glibtop_union
  58. {
  59.     glibtop_cpu        cpu;
  60.     glibtop_mem        mem;
  61.     glibtop_swap        swap;
  62.     glibtop_uptime        uptime;
  63.     glibtop_loadavg        loadavg;
  64.     glibtop_shm_limits    shm_limits;
  65.     glibtop_msg_limits    msg_limits;
  66.     glibtop_sem_limits    sem_limits;
  67.     glibtop_proclist    proclist;
  68.     glibtop_proc_state    proc_state;
  69.     glibtop_proc_uid    proc_uid;
  70.     glibtop_proc_mem    proc_mem;
  71.     glibtop_proc_time    proc_time;
  72.     glibtop_proc_signal    proc_signal;
  73.     glibtop_proc_kernel    proc_kernel;
  74.     glibtop_proc_segment    proc_segment;
  75.     glibtop_proc_args    proc_args;
  76.     glibtop_proc_map    proc_map;
  77.     glibtop_mountlist    mountlist;
  78.     glibtop_fsusage        fsusage;
  79.     glibtop_netload        netload;
  80.     glibtop_ppp        ppp;
  81. };
  82.  
  83. END_LIBGTOP_DECLS
  84.  
  85. #endif
  86.